.sf-exhibition-banner {
    position: relative;
    width: 100%;
    min-height: 360px;
    background: url('') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay */
.sf-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

/* Container */
.sf-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 5%;
}

/* Row Layout */
.sf-banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT TEXT */
.sf-banner-text {
    flex: 1;
}

.sf-banner-text h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sf-banner-text p {
    color: #ffd200;
    font-size: 16px;
    font-weight: 600;
}

/* RIGHT IMAGE */
.sf-banner-img {
    flex: 1;
    text-align: right;
}

.sf-banner-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .sf-banner-text h2 {
        font-size: 36px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sf-banner-row {
        flex-direction: column;
        text-align: center;
    }

    .sf-banner-img {
        margin-top: 20px;
        text-align: center;
    }

    .sf-banner-text h2 {
        font-size: 26px;
    }

    .sf-banner-text p {
        font-size: 14px;
    }
}







.sf-exhibition-gallery {
    padding: 80px 0;
    background: #fff;
}

/* Container */
.sf-exhibition-gallery .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 5%;
}

/* Title */
.sf-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.sf-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.sf-section-title p {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

/* Grid Layout */
.sf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Image Box */
.sf-gallery-item {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.sf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover Effect */
.sf-gallery-item:hover img {
    transform: scale(1.08);
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .sf-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .sf-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sf-section-title h2 {
        font-size: 22px;
    }
}

